【例子介绍】c#协议开发UDP群聊带私聊案例
最近做音频通讯闲来做的UDP例子,特地分享
【相关图片】
【源码结构】
文件清单
└── UDP群聊
├── TestUDPGroupServer
│ ├── TestUDPGroupClient
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── TestUDPGroupClient.exe
│ │ │ ├── TestUDPGroupClient.pdb
│ │ │ └── TestUDPGroupClient.vshost.exe
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── TempPE
│ │ │ │ ├── TestUDPGroupClient.csproj.GenerateResource.Cache
│ │ │ │ ├── TestUDPGroupClient.exe
│ │ │ │ ├── TestUDPGroupClient.Form1.resources
│ │ │ │ ├── TestUDPGroupClient.pdb
│ │ │ │ └── TestUDPGroupClient.Properties.Resources.resources
│ │ │ └── TestUDPGroupClient.csproj.FileList.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── TestUDPGroupClient.csproj
│ ├── TestUDPGroupServer
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── TestUDPGroupServer.exe
│ │ │ ├── TestUDPGroupServer.pdb
│ │ │ └── TestUDPGroupServer.vshost.exe
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── obj
│ │ │ ├── Debug
│ │ │ │ ├── Refactor
│ │ │ │ ├── TempPE
│ │ │ │ ├── TestUDPGroupServer.csproj.GenerateResource.Cache
│ │ │ │ ├── TestUDPGroupServer.exe
│ │ │ │ ├── TestUDPGroupServer.Form1.resources
│ │ │ │ ├── TestUDPGroupServer.pdb
│ │ │ │ └── TestUDPGroupServer.Properties.Resources.resources
│ │ │ └── TestUDPGroupServer.csproj.FileList.txt
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── TestUDPGroupServer.csproj
│ ├── TestUDPGroupServer.sln
│ └── TestUDPGroupServer.suo
└── UDPServerList
├── UDPServerList
│ ├── bin
│ │ └── Debug
│ │ ├── UDPServerList.exe
│ │ ├── UDPServerList.pdb
│ │ └── UDPServerList.vshost.exe
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── TempPE
│ │ │ ├── UDPServerList.csproj.GenerateResource.Cache
│ │ │ ├── UDPServerList.exe
│ │ │ ├── UDPServerList.pdb
│ │ │ ├── UDPServerList.Properties.Resources.resources
│ │ │ └── UDPServerList.Server.resources
│ │ └── UDPServerList.csproj.FileList.txt
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Server.cs
│ ├── Server.Designer.cs
│ ├── Server.resx
│ └── UDPServerList.csproj
├── UDPServerList.sln
├── UDPServerList.suo
└── UDPSingleClient2
├── bin
│ └── Debug
│ ├── UDPSingleClient2.exe
│ ├── UDPSingleClient2.pdb
│ └── UDPSingleClient2.vshost.exe
├── Client.cs
├── Client.Designer.cs
├── Client.resx
├── obj
│ ├── Debug
│ │ ├── Refactor
│ │ ├── TempPE
│ │ ├── UDPSingleClient2.csproj.GenerateResource.Cache
│ │ ├── UDPSingleClient2.exe
│ │ ├── UDPSingleClient2.Form1.resources
│ │ ├── UDPSingleClient2.pdb
│ │ └── UDPSingleClient2.Properties.Resources.resources
│ └── UDPSingleClient2.csproj.FileList.txt
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── UDPSingleClient2.csproj
└── UDPSingleClient2.csproj.user
34 directories, 81 files
评论